home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000053_news@columbia.edu _Wed Apr 4 10:42:46 2001.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by uhaligani.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id KAA21036
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Wed, 4 Apr 2001 10:42:45 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id KAA18986
  7.     for kermit.misc@watsun.cc.columbia.edu; Wed, 4 Apr 2001 10:27:15 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@columbia.edu (Frank da Cruz)
  10. Subject: Re: Linux to SCO terminal emulator
  11. Date: 4 Apr 2001 14:27:14 GMT
  12. Organization: Columbia University
  13. Message-ID: <9afb02$ih8$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <slrn9club2.lo5.harri@tolppa.kotisivupalvelu.fi>,
  17. Harri Haataja <harri@tolppa.kotisivupalvelu.fi> wrote:
  18. : AFAIK, cu is a part of UUCP which is a rare installation nowadays.
  19. : There seem to be little terminal emulators available because most of
  20. : the time it makes little or more likely absolutely no sense. xterm or
  21. : console or whatever you might be running (termcap most likely xterm or
  22. : linux) should work and kermit is very good at getting over serial
  23. : lines.
  24. : As for the original issue, f-keys should be passed to the terminal
  25. : or active xterm or whatever unless something filters them out. Then
  26. : it's a matter of many different components wheather the odd character
  27. : sequence gets to the other end intact. The "scancodes directly over
  28. : tcp" sounds very odd. You might even be looking for netcat?
  29. UNIX is not Windows or DOS.  How is a UNIX-based software program
  30. supposed to access the keyboard directly to get Make/Break (Up/Down)
  31. events?  This information is simply not available to user-mode
  32. applications.  Applications (other than X or the console driver) do not
  33. have direct access to the video adapter, mouse, and keyboard, nor should
  34. they.
  35.  
  36. Remember that an advantage of UNIX over DOS and Windows is that UNIX
  37. is a multiuser, multitasking operating system, not a single-user system
  38. designed only for use on a PC, from the PC's own physical keyboard and
  39. screen.  UNIX users can come in over the console, through X, through a
  40. serial port, a Telnet connection, an Rlogin connection, etc etc, and
  41. there can be any number of them at once.  The price you pay for this
  42. flexibility is that applications can't access the hardware directly.
  43.  
  44. These days, UNIX (Linux) is a general-purpose multiser OS that
  45. everybody is trying to turn into a single-user PC operating system like
  46. Windows, and at the same time Windows is a single-user PC operating
  47. system that everybody is trying to turn into a general-purpose
  48. multiuser operating system.  Each one is best at what it was originally
  49. designed for.  If you want a platform for which high-performance
  50. terminal emulators are available, you're better off with Windows.  If
  51. you want a platform that is generally useful, programmable, relatively
  52. secure, and supports multiple users coming in from a variety of sources
  53. from a variety of different platforms using non-propriatry methods,
  54. you're better off with UNIX.
  55.  
  56. Of course most people want or need both, which results in many of us
  57. with two workstations on our desks, or booting back and forth between
  58. two OS's, or running DOS or Windows emulators under UNIX so we can have
  59. a terminal emulator.
  60.  
  61. - Frank